Tagged Questions
The schemaless tag has no wiki summary.
11
votes
3answers
4k views
Django and NoSQL, any ready-to-use library?
So far Django has good integration with several RDBMS. NoSQL, schema-less and document-oriented DBMS are picking up. What's the status of integration those on-trend and fashionable DBMSes with Django? ...
9
votes
4answers
1k views
What's the attraction of schemaless database systems?
I've been hearing a lot of talk about schema-less (often distributed) database systems like MongoDB, CouchDB, SimpleDB, etc...
While I can understand they might be valuable for some purposes, in most ...
8
votes
4answers
3k views
What is the best open source solution for storing time series data?
I am interested in monitoring some objects. I expect to get about 10000 data points every 15 minutes. (Maybe not at first, but this is the 'general ballpark'). I would also like to be able to get ...
7
votes
4answers
801 views
Best practices to access schema-less data?
I am toying with RDF, and in particular how to access information stored in a rdf storage. The huge difference from a traditional relational database is the lack of a predefined schema: in a ...
6
votes
5answers
673 views
Using a Relational Database for Schemaless Data - Best Practices
After reading a shocking article written by Bret Taylor (co-creator of FriendFeed; current CTO of Facebook), How FriendFeed uses MySQL to store schema-less data, I began to wonder if there are best ...
6
votes
2answers
153 views
Array, EAV, Serialized LOB for custom fields?
I've been trying to answer a complex Mysql data structure problem for custom fields for an online app. I'm fairly new to Mysql so any input is appreciated.
The current database is a relational ...
6
votes
2answers
1k views
Entity groups in Google App Engine Datastore
So I have an app that if I'm honest doesn't really need transactional integrity (lots of updates, none of them critical). So I was planning on simply leaving entity groups by the wayside for now. ...
4
votes
1answer
398 views
how to export collection to csv in mongodb
How to export all the record in mongodb to csv ?
mongoexport --host localhost --db dbname --collection name --csv > test.csv
This asks me to specify name of the fields I need to export. Can I ...
3
votes
2answers
121 views
Schemaless financial data, and NoSQL?
We have an application that works with financial data that is schemaless. More accurately, the shemaless data is information about an order, where fields are customized by the merchant. Consistency ...
3
votes
3answers
230 views
Does this schema sound better suited for a document-oriented data store or relational?
Disclaimer: let me know if this question is better suited for serverfault.com
I want to store information on music, specifically:
genres
artists
albums
songs
This information will be used in a ...
3
votes
5answers
1k views
What is couchdb, for what and how should I use it?
I hear a lot about couchdb, but after reading some documents about it, I still don't get why to use it and how.
Could you clarify this mystery for me?
2
votes
2answers
162 views
Schema dependent class to schemaless document using MongoDb and C#
Let us suppose we have a document to store our client which has fixed and extra fields.
So here goes our sample class for the client:
public class Client
{
public string Name{ get; set; }
...
2
votes
1answer
303 views
Schemaless Data Cache: NoSQL or Other Alternatives?
I am evaluating a number of NoSQL implementations (RavenDB and MongoDB at the moment) as a means of solving a specific set of requirements that involve storage/retrieval of data that is schema-less. ...
2
votes
3answers
454 views
Getting started with the Friendly ORM
I'm following this tutorial: http://friendlyorm.com/
I'm using InstantRails to run MySQL locally. To run Ruby and Rails, I'm using normal Windows installations.
When I run Friendly.create_tables! I ...
2
votes
3answers
584 views
schema-less data warehouse and reporting
We have a system that generates many events as the result of a phone call/web request/sms/email etc, each of these events need to be able to be stored and be available for reporting (for MI/BI etc) ...
1
vote
3answers
672 views
Serializiation with Protocol Buffers in a Schemaless Database
We're using MySQL to store schemaless data (see: Using a Relational Database for Schemaless Data for the solution inspired by how FriendFeed uses MySQL to store schemaless data).
One big table holds ...
1
vote
4answers
201 views
Using a Filesystem (Not a Database!) for Schemaless Data - Best Practices
After reading over my other question, Using a Relational Database for Schema-Less Data, I began to wonder if a filesystem is more appropriate than a relational database for storing and querying ...
1
vote
1answer
320 views
Schema less SQL database table - practical compromise
This question is an attempt to find a practical solution for this question.
I need a semi-schema less design for my SQL database. However, I can limit the flexibility to shoehorn it into the entire ...
0
votes
1answer
64 views
What is the relative cost of reading rows vs. columns in SQLite?
I am attempting to create a wrapper around SQLite databases that would allow schema-less access from .net applications. The idea is to have each entity as simply a collection or attribute value ...
0
votes
1answer
86 views
Need visual application development tool for complex many-to-many and hierarchical relationships
I'm looking for a visual database application development tool (GUI based, or script) that we can use to develop an application that takes a set of text and numeric fields through a series of ...
0
votes
2answers
93 views
How to consume ad hoc web services (non-SOAP, schemaless XML)?
I need to write integrations to multiple external web services. Some of them are SOAP (have WSDL), some of them pretty much ad hoc - HTTP(s), authentication either by basic auth or parameters in URL ...
0
votes
1answer
40 views
Storing a property of the type specified in a string
There's an XML scheme which says something like this:
<ExtraFields>
<ExtraField Type="Int">
<Key>Mileage</Key>
<Value>500000 </Value>
</ExtraField>
...
0
votes
2answers
143 views
Can the Friendly ORM be used alongside a traditional database schema?
Can I use ActiveRecord for existing models and Friendly for new models?
Basically, I want to decide which models I'd like to be schemaless and which models I'd like to be done the "old" style.