GithubHelp home page GithubHelp logo

sricharan761991 / concourse Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cinchapi/concourse

0.0 2.0 0.0 28.63 MB

Distributed database for transactions, search and analytics across time.

Home Page: http://concoursedb.com

License: Apache License 2.0

Shell 2.65% Java 75.81% PHP 4.82% Python 3.80% Ruby 5.78% Smarty 0.03% Thrift 3.06% Groff 1.02% Groovy 2.11% Makefile 0.01% CSS 0.15% HTML 0.78%

concourse's Introduction

Concourse

Join the chat at https://gitter.im/cinchapi/concourse

Concourse is a self-tuning database for both ACID transactions and ad-hoc analytics across time. Developers prefer Concourse because it makes it easy to build operational software with on-demand data intelligence. Furthermore, Concourse greatly simplifies end-to-end data management by requiring no extra infrastructure, no prior configuration and no continuous tuning–all of which greatly reduce costs, and allow developers to focus on core business problems.

This is version 0.6.0 of Concourse.

Quickstart

Deploy to Heroku

Let's assume we have the an array of JSON objects that describe NBA players.

from concourse import *

data = [
    {
        "name": "Lebron James",
        "age": 30,
        "team": "Cleveland Cavaliers"
    },
    {
        "name": "Kevin Durant",
        "age": 26,
        "team": "OKC Thunder"
    },
    {
        "name": "Kobe Bryant",
        "age": 36,
        "team": "LA Lakers"
    }
]
You can use Concourse to quickly insert the data and do some quick analysis. Notice that we don't have to declare a schema, create any structure or configure any indexes.
concourse = Concourse.connect()
records = concourse.insert(data) # each object is added to a distinct record
lebron = records[0]
durant = records[1]
kobe = records[2]
You can read and modify individual attributes without loading the entire record.
concourse.get(key="age", record=kobe)
concourse.add(key="name", value="KD", record=durant)
concourse.remove(key="jersey_number", value=23, record=lebron)
You can easily find records that match a criteria and select the desired since everything is automatically indexed.
concourse.select(criteria="team = Chicago Bulls")
concourse.select(keys=["name", "team"], criteria="age bw 22 29")
You can even query data from the past without doing any extra work.
concourse.get(key="age", record=durant, time="04/2009")
concourse.find("team = Chicago Bulls at 2011")
concourse.select(criteria="age > 25 and team != Chicago Bulls", time="two years ago")
It is very easy to analyze how data has changed over time and revert to previous states.
# Analyze how data has changed over time and revert to previous states
concourse.audit(key="team", record=lebron)
concourse.revert(key="jersey_number", record=kobe, time="two years ago")
And ACID transactions are available for important, cross record changes.
concourse.stage()
try:
    concourse.set(key="current_team", value="OKC Thunder", record=lebron)
    concourse.set(key="current_team", value="Cleveland Cavs", record=durant)
    concourse.commit()
except TransactionException:
    concourse.abort()

You can find more examples in the examples directory. More information is also available in the Concourse Guide and API documentation.

Motivation

Whether you use SQL or NoSQL, it's hard to get real-time insight into your mission critical data because most systems are only optimized for either transactions or analytics, not both. As a result, end-to-end data management requires complex data pipelining, which slows down development, complicates infrastructure and increases costs.

The Solution

Concourse is an integrated and self-managing transactional database that enables real time ad-hoc analytics without any configuration.

Automatic Indexing

You no longer need to plan queries in advance because Concourse automatically indexes all of your data while guaranteeing constant time writes that are super fast. Concourse fully supports ad-hoc range and predicate queries and automatically caches frequently requested data for optimal performance.

Version Control

Concourse automatically tracks changes to your data, just like Git does for source code. Of course this means that you can easily audit changes and revert to previous states without downtime; but it also means that you have the power to query data from the past. Version control in Concourse makes it possible to build applications that know what was known when and can analyze real-time changes over time.

ACID Transactions

Concourse supports truly distributed ACID transactions without restriction. And we use dynamic resource management with just-in-time locking to ensure that they deliver both the highest performance and strongest consistency. So no need to guess when your data will eventually become consistent. When distributed Concourse responds to a query, you can trust the results immediately.

Simple Data Model

Concourse's document-graph structure is lightweight and flexible–it supports any kind of data and very large scales. Data about each person, place or thing is stored in a record, which is simply a collection of key/value pairs. And you can create links among records to easily model all the relationships within your data.

Schemaless

Since Concourse makes very few assumptions about data, it integrates with your application seamlessly and never needs a translator (goodbye object-relational impedance mismatch)! You never have to declare structure up front–no schema, tables, or indexes–or specify value types because Concourse is smart enough to figure it out. Concourse dynamically adapts to your application so that you can focus on building value without having to drag the database along.

Search

Concourse supports rich full text search right out the box, so you don't need to deploy an external search server. Data is automatically indexed and searchable in real-time without ever diminishing write performance. In Concourse, you can always perform as-you-type searches that match full or partial terms.

Overview

System Requirements
  • At least 256 MB of available memory
  • Linux or OS X
  • Java 1.8+
Versioning

Concourse will be maintained under the Semantic Versioning guidelines such that release versions will be formatted as <major>.<minor>.<patch> where

  • breaking backward compatibility bumps the major,
  • new additions while maintaining backward compatibility bumps the minor, and
  • bug fixes or miscellaneous changes bumps the patch.
Additional Resources

Contributing

Read the contributing guidelines to learn how to get involved in the community. We value and welcome constructive contributions from anyone, regardless of skill level :)

Mailing Lists

Credits

Author
License

Copyright © 2013-2016 Cinchapi Inc.

Concourse is released under the Apache License, Version 2.0. For more information see LICENSE, which is included with this package.

concourse's People

Contributors

jtnelson avatar adisrini avatar raghavbabu avatar kylycht avatar dubex avatar chandresh-pancholi avatar javierlores avatar vijayk2019 avatar jonathanmarvens avatar jaypatel4444 avatar hyinnn avatar hcuffy avatar jamalmoir avatar lhcopetti avatar dearyhud avatar larry-the-tennis-ball avatar vrnithinkumar avatar gitter-badger avatar iamutkarshtiwari avatar briannafugate408 avatar vishuv avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.