0
votes
0answers
5 views

get_range and get_indexed_slices in pycassa

I want to retrieve data with the key and a filter in a column, but I can see that pycassa does not allow to do that easily How can I combine two functions get_range and get_indexed_slices at once?
1
vote
1answer
52 views

Best database management system for nested sorting? [closed]

I've got a bunch of events that I need to organize first by location, then by time, then any organization of the remaining attributes (duration, cost, description). The problem is that there are ...
-1
votes
0answers
59 views

Django and NoSql - use or not [closed]

Is a good idea to use a NoSQL(couch db/mongo) database with django? The project will operate on multiple files, upload, ocr integration, categorizing files, parsing text document etc. Is this a good ...
0
votes
1answer
36 views

Possible NoSQL cases [closed]

There are two possible cases where I am finding MySQL and RDBMS too slow. I need a recommendation for a better alternative in terms of NOSQL. 1) I have an application that's saving tons of emails for ...
0
votes
0answers
69 views

MongoDB -> Design decision for huge datasets

here is my problem. I have a 50 cities (a,b,....), each city contains up to 4000 addresses (a1, a2, ... or b1, b2, ...) and each of these addresses contains a list with 10.000-40.000 ...
0
votes
1answer
67 views

NDB/DB NoSQL Injection Google Datastore

Is there any SQL injection equivalents, or other vulnerabilities I should be aware of when using NoSQL? I'm using Google App Engine DB in Python2.7, and noticed there is not much documentation from ...
2
votes
2answers
69 views

How to create a fast, queryable index from many JSON files (ideally in Python)

I have 78,000 individual JSON files that I created with a Python script that scrapes a community forum and extracts information from each post. They consist of simple key-value pairs, like so: { ...
0
votes
1answer
38 views

Customazible Admin Page (web-interface) for a web scraper

I wrote web scraper in python, which uses MongoDB as a data store for saving complex settings in JSON format. Now I need some interface for users, who will enter such settings into database. It must ...
1
vote
1answer
86 views

Is there a plan for Django to handle NoSQL databases natively? [closed]

I really like Django. I've fiddled around a bit with Rails, but I personally prefer Django's logic. I also prefer Python over Ruby. Again, personal preferences. Despite all that, I am now switching ...
0
votes
1answer
53 views

Two-to-Many relationship in Google App-Engine

I am modeling a simple turnbased game for GAE (think of the board game Battleship). There is always exactly two users involved in a game. A user can participate in many games. The "homescreen" of our ...
1
vote
1answer
80 views

neo4j query for a node using python rest client

I have nodes in index with following proprties: {'user_id': u'00050714572570434939', 'hosts': [u'http://shyjive.blogspot.com/'], 'follows': ['null']} Now i have index and I am trying simple query ...
0
votes
1answer
37 views

neo4jrestclient , to add property after node is created

I am trying to create new node , but when i add extra property in next line it fails . For eg : gdb = GraphDatabase("http://localhost:7474/db/data/") index = gdb.nodes.indexes.create('blogger') for i ...
0
votes
1answer
36 views

How to update a an object after find() with mongokit?

@connection.register class User(Document): __database__ = 'foo' __collection__ = 'bar' structure = { '_id' : ObjectId, 'Email' : basestring, } col = ...
1
vote
0answers
36 views

Quick intermediate storage, nosql [closed]

I currently am planning to implement an intermediary database storage and need some help with the design. This is what is required. HTTP requests will be pouring in to the server. The application will ...
1
vote
3answers
116 views

Google-App-Engine-Like Datastore for Python

Is there any software library that provides an interface for storing and querying data like the Google App Engine Datastore, but uses a local file or service instead of running on App Engine? The ...
5
votes
3answers
652 views

Comparing MongoDB and RethinkDB Bulk Insert Performance

This is my official first question here; I welcome any/all criticism of my post so that I can learn how to be a better SO citizen. I am vetting non-relational DBMS for storing potentially large email ...
0
votes
0answers
64 views

MongoDB Schema to track transformations and log process

I am redesigning a very normalized database using the much more flexible MongoDB. The current problem is that the existing structure doesn't support the new processes being implemented without ...
0
votes
1answer
168 views

Which is the fastest embedded noSQL database for Python? [closed]

I need a noSQL solution that is fast, small, embedded (because I don't have root privilege) and supports Python. For now I just have two names: DyBASE, CodernityDB. Please help me find others and ...
0
votes
2answers
32 views

Preloaded Document based Desktop Application

I want to develop a desktop application that allows users to search through json files. These files (around 50.000) are predefined. They should be shipped with the application itself. My question is, ...
0
votes
0answers
80 views

How do you store countable properties of django models?

I have a database representing linked entities. There are some "expensive" operations on this entities - countable properties. I want to store this countable properties neither as a field in database ...
0
votes
1answer
132 views

Storing (or fetching) multiple values at once from Riak with Python and Flask

I am trying to write a small app that gets visitor IP and stores in Riak database. On its /show route it should list all visitors, that is, stored IP's and associated dates. However, for some reason, ...
0
votes
1answer
40 views

Explain search (Sphinx/Haystack) in simple context?

Could you explain how search engines like Sphinx, Haystack, etc fit in to a web framework. If you could explain in a way that someone new to web development could understand that would help. One ...
3
votes
1answer
127 views

Avoid using db.UserProperty() when storing user objects

So... There is the db.UserProperty() model class that stores the Email address in Unicode order. Why and how does it differ from a unicode string that just stores the ...
0
votes
1answer
311 views

Why use NoSQL instead of RDBMS? [duplicate]

Possible Duplicate: NoSql vs Relational database I have been on a couple projects where my teams chose to use a NoSQL DB (i.e. MongoDB) rather than a RDBMS like PostgreSQL or MySQL. By ...
2
votes
1answer
126 views

Are all data types strings in Neo4j accessed by py2neo through the REST API?

I have a query of this form creating a new node in neo4j: cypher.get_or_create_indexed_node(index="person", key="name", value="Fred", properties={"level" : 1} However, when I query Fred to inspect ...
0
votes
2answers
341 views

How to utilize OpenBSD, Nginx, Python and NoSQL

I'm familiar with LAMP systems and have been programming mostly in PHP for the past 4 years. I'm learning Python and playing around with Nginx a little bit. We're working on a project website which ...
1
vote
2answers
151 views

MongoDb speed decrease

I use mongodb to store compressed html files . Basically, a complete document of mongod is like: {'_id': 1, 'p1': data, 'p2': data2, 'p3': data3} where data, data1, data3 are ...
0
votes
0answers
73 views

What language to use for manipulating and filtering my complex data? [closed]

My data is stored in MySql database. There are multiple tables with regular fields (textual, numeric, dates, boolean) and Blobs that contain serialized Java Lists, Maps, and Maps of Maps. I have been ...
2
votes
3answers
102 views

NOSQL databases for sets (as opposed to dicts/key-value stores)?

I'm trying to find a database to function as a Python set. This is because my data is way too big to be stored in memory. I tried using SQLite, but heard that it might have performance issues for > ...
1
vote
0answers
116 views

Where to store millions of HTML files

I have up to 100 million HTML static files. I need them for my software. Where can I store that many HTML files and access them when I need them? Solution #1. Just in some folder. Is this OK? Is this ...
1
vote
2answers
112 views

What are some ways to maintain data consistency at the application layer of NoSQL?

My python web application uses DynamoDB as its datastore, but this is probably applicable to other NoSQL tables where index consistency is done at the application layer. I'm de-normalizing data and ...
0
votes
1answer
108 views

Storing items in a DynamoDB table where the key and range key may overlap

I'm looking to store a large collection of photos in a DynamoDB table. Each photo can belong to an an "album" -- in fact, a photo can belong to multiple albums. I'd like to set the data up so I can ...
2
votes
3answers
823 views

First time Django database SQL or NoSQL?

I've been learning Python through Udacity, Code Academy and Google University. I'm now feeling confident enough to start learning Django. My question is should I learn Django on an SQL database - ...
3
votes
2answers
273 views

Most efficient algorithm to retrieve data from database

So I am removing the Joins from my queries as I prepare to move to Cassandra which does not support this, but rather supports many select statements instead. I made a benchmark test on 50 rows of ...
0
votes
1answer
170 views

How to improve the write speed of mongo?

I use mongo and sys-ng to save my log the log is about 20000 lines pre second I run mongo whit 2 shard and 3 host with mongos I write a python script in ipython In [48]: %time ...
1
vote
3answers
155 views

Process 5 million key-value data in python.Will NoSql solve?

I would like to get the suggestion on using No-SQL datastore for my particular requirements. Let me explain: I have to process the five csv files. Each csv contains 5 million rows and also ...
0
votes
1answer
103 views

mongodb:find and update operator can combine to one sql command?

I have a collection:{"_id":1,"a":3,"b":5,“a+b”:0} I want to do this: y=db.collection.find({"_id":1},{"a":1,"b":1}) sum=y["a"]+y["b"] db.collection.update({"_id":1},{"$set":{"a+b",sum}}) so ...
0
votes
1answer
76 views

Insert/find/update operator performance?

def test_find_update(): db = Connection() db.drop_collection("test") db.test.insert({"x":1,"y":2}) start = time.time() for i in range(1,10000): y = db.test.find_one() ...
1
vote
2answers
134 views

key/value store with good performance for multiple tenants

im running a multi tenant GAE app where each tenant could have from a few 1000 to 100k documents. at this moment im trying to make a MVC javascript client app (the admin part of my app with spine.js) ...
0
votes
2answers
349 views

redis - Using Hashes

I'm implementing a social stream and a notification system for my web application by using redis. I'm new to redis and I have some doubts about hashes and their efficiency. I've read this awesome ...
-1
votes
3answers
251 views

Mongoengine integer id, and User creating

MongoDB using string(hash) _id field instead of integer; so, how to get classic id primary key? Increment some variable each time I create my class instance? class Post(Document): authors_id = ...
0
votes
1answer
257 views

How to convert this RDBMS schema to a MongoDB “schema” (and how to query against it)

I am learning how to use MongoDB. It is taking me a while change my mindset from RDBMS/SQL to NoSQL. Using the following tables and queries as an example, I am hoping that someone can explain how I ...
0
votes
1answer
292 views

Setting up django-nonrel?

I'm trying to set up django-nonrel into a new virtualenv, but am getting an error saying: OSError: [Errno 2] No such file or directory. I can't tell from the error log exactly which file or ...
1
vote
4answers
225 views

MongoDB: Embedded users into comments

I cant find "best" solution for very simple problem(or not very) Have classical set of data: posts that attached to users, comments that attached to post and to user. Now i can't decide how to build ...
3
votes
1answer
505 views

Redis: Memory optimization/performance strategy

I have written an application that essentially sniffs an Ethernet Device, and studies certain patterns. I am using Python and Scapy to capture data. Since the data needs to be captured in a database ...
0
votes
1answer
93 views

Split Mongo Collection (by Index)

I currently have a long-running operation (running in Python+Celery) that goes through an entire Mongo collection of about 43,000,000 elements and does an analysis on the elements without making any ...
1
vote
1answer
126 views

Does pycassa's ColumnFamily.get_indexed_slices return a generator?

The documentation at [1] says that ColumnFamily.get_range() returns a python generator over (key, {column_name: column_value}). I wonder if ColumnFamily.get_indexed_slices() also returns a generator. ...
0
votes
1answer
236 views

Key-Value Pairs in Redis

I'm planning to use Redis, to store a list of image links associated with a set of keywords for fast retrieval. But, I'm kinda confused on defining my keys here. I'd like to have a set of ...
1
vote
2answers
103 views

Dynamic property vs. fixed property query speeds on Google App Engine

I'm designing datastore models and trying to decide the best approach when thinking about how the query filters are going to work. Best if I just write out two examples. The first example is if I ...
6
votes
2answers
923 views

NoSQL abstraction layer for Python

Does anybody know of an abstraction layer for nosql databases for Python similar to SQL Alchemy for SQL? This would allow redis, mongodb, etc... to be pluggable backends without having to write for ...

1 2 3