[Drizzle-discuss] How to start

2011-03-21 Thread Mohit Srivastava
Hi everyone, I am mohit srivastava , 3rd year student at Institute Of Technology. I am new to drizzle. I completed few basic step of it. Now please tell me what is best way to start contributing and understanding its source. -- Thanks Mohit ___ Mailing

[Drizzle-discuss] [Drizzle-Discuss]

2011-03-21 Thread Mohit Srivastava
Hello, I got this error after running make file. Any suggestions please. PYTHONPATH=./docs sphinx-build -b man -d ./docs/doctrees -W -D release=2011.03.13.2243 ./docs ./docs/man Running Sphinx v1.0.1 loading pickled environment... not yet created loading intersphinx inventory from

[Drizzle-discuss] GSOC 2012 Participation

2012-03-18 Thread Mohit Srivastava
Hi, I am Mohit Srivastava, a senior undergraduate student pursuing my integrated dual degree in Computer Science and Engineering. I have gone through your GSoC project ideas and I would like to contribute to them. I have also looked into drizzle's codebase and submitted a patch of a *low hanging

Re: [Drizzle-discuss] (no subject)

2012-03-20 Thread Mohit Srivastava
Might be port 3306 is already in use. check whether mysql service is already running or not ? On Tue, Mar 20, 2012 at 5:03 PM, denis boyun denisbo...@gmail.com wrote: Hi, I have build the drizzle project on my desktop(Ubuntu 11.04, x86_32). I have used this article

[Drizzle-discuss] Transactional DDL not supported

2012-03-20 Thread Mohit Srivastava
Hi, I got Transactional DDL not supported when Create table query is executing through execute.run() . Any solution to run this query successfully . -- Mohit ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to :

[Drizzle-discuss] Dynamic Plugin

2012-03-22 Thread Mohit Srivastava
Hi , I want to know which plugins are dynamic in nature in current stage? -- Mohit ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net Unsubscribe : https://launchpad.net/~drizzle-discuss More help

Re: [Drizzle-discuss] Need to run tests

2012-03-24 Thread Mohit Srivastava
/test-run.html Ping us if you have further questions Patrick On 03/23/2012 02:35 PM, Mohit Srivastava wrote: Hi, How can i run tests? mohit __**_ Mailing list: https://launchpad.net/~**drizzle-discusshttps://launchpad.net/~drizzle

Re: [Drizzle-discuss] Need to run tests

2012-03-24 Thread Mohit Srivastava
yeah , I am. On Sat, Mar 24, 2012 at 8:09 PM, Olaf van der Spek olafvds...@gmail.comwrote: On Sat, Mar 24, 2012 at 3:36 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Hi , But when I perform make test. Get this error drizzled cannot be run as root, use --user to start

Re: [Drizzle-discuss] Need to run tests

2012-03-24 Thread Mohit Srivastava
I can do that , but I want to know , during testing from where server is start ? On Sat, Mar 24, 2012 at 8:10 PM, Olaf van der Spek olafvds...@gmail.comwrote: Shame on you. Create a non-root user and use that instead. On Sat, Mar 24, 2012 at 3:39 PM, Mohit Srivastava srivastavamohi

[Drizzle-discuss] Regarding Proposal For Gsoc

2012-03-26 Thread Mohit Srivastava
Hi , I want to know , can I submit two proposal for GSOC ? As Json_server (V 0.1) is completed , just test cases has to be written. Thanks to Henrik Ingo for support. And I also looked at Dynamic Plugin and get its basic Idea. So can I submit proposal on both of them , I can assure that I will

[Drizzle-discuss] Workaround for warning as error during drizzle build

2012-04-18 Thread Mohit Srivastava
Hi, As I was facing problem during drizzle build, due to warning treat as error. So to get rid of this , I just run ./config/autorun.sh then I comment the following lines in configure script. And run ./configure and make if test -d .bzr ; then pandora_building_from_bzr=yes

Re: [Drizzle-discuss] Design of JSON API

2012-04-24 Thread Mohit Srivastava
Hi Henrik, Thanks for selecting me for this project. I already gone through your blog post. I will keep doing research on the new ideas for server. But importantly I will focus on re-factoring task of server. -- Mohit On Tue, Apr 24, 2012 at 7:14 PM, Henrik Ingo henrik.i...@avoinelama.fiwrote:

[Drizzle-discuss] Build drizzle on centos

2012-04-24 Thread Mohit Srivastava
Hi, I want to build drizzle on Centos. I tried the documentationhttp://docs.drizzle.org/#compiling-and-installing but that wont help me. How can I resolve dependencies on centos. Is there some thing like drizzle-dev ? -- Mohit ___ Mailing list:

Re: [Drizzle-discuss] Workaround for warning as error during drizzle build

2012-05-28 Thread Mohit Srivastava
Hi Stewart, I already figured out the problem and now its working properly. Thanks for your help. Mohit On May 28, 2012 5:46 PM, Stewart Smith stew...@flamingspork.com wrote: On Thu, 19 Apr 2012 00:30:10 +0530, Mohit Srivastava srivastavamohi...@gmail.com wrote: As I was facing problem

Re: [Drizzle-discuss] Refactoring SQL executor

2012-05-31 Thread Mohit Srivastava
Hi Henrik , I think yeah you are right , but can we do that in this manner : HttpHandler : This one take care of http requests. JsonThreadPool : This one supply threads for each request. In short , Handler will ask thread-pool for thread , and whenever it get some thread , it execute the

Re: [Drizzle-discuss] Refactoring SQL executor

2012-05-31 Thread Mohit Srivastava
On Fri, Jun 1, 2012 at 12:08 AM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Hi Henrik , I think yeah you are right , but can we do that in this manner : HttpHandler : This one take care of http requests. JsonThreadPool : This one supply threads for each request. In short

[Drizzle-discuss] SqlGenerator and SqlExecutor

2012-06-05 Thread Mohit Srivastava
Hi Henrik, I am done with SqlExecutor and SqlGenerator code. Just a bit documentation :) and then will start work on JsonGenerator. Here is brief description: sqlGenerator : json_in as input and sql string as output. sqlExecutor : sql string as input and resultset as output. Regards, Mohit

Re: [Drizzle-discuss] Executor Generator Review Request

2012-06-06 Thread Mohit Srivastava
Hi Henrik, Yeah, I remember to add a factory class like dbacess , but that I will do after the completion of SQLToJsonGenerator class. -- Mohyt On Thu, Jun 7, 2012 at 3:15 AM, Henrik Ingo henrik.i...@avoinelama.fiwrote: On Wed, Jun 6, 2012 at 4:01 PM, Mohit Srivastava srivastavamohi

[Drizzle-discuss] Retrieve Last Insert Id

2012-06-13 Thread Mohit Srivastava
Hi, I created a table with auto-increment id column. After Replace query , I need to find out the last insert Id or last affected ID. Is that possible , without using select query after replace query ? Because , doing that will increase the overhead on server. I have resultset for replace query ,

Re: [Drizzle-discuss] JSON Server API Update

2012-06-15 Thread Mohit Srivastava
:55 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Hi Henrik, I have completed the DBAccess part too, but need to use enum. You might help me in that too :) These are the new commits , you can find latest code here. Again please ignore json_server.cc right now. Updated

Re: [Drizzle-discuss] JSON Server API Update

2012-06-15 Thread Mohit Srivastava
() if error and error == table doesn't exist create table retry executeSQL() endif endif This one I will do later. On Fri, Jun 15, 2012 at 4:31 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: DBAccess.h DBAccess(Json::Value json_in,Json::Value json_out); void execute

Re: [Drizzle-discuss] JSON Server API Update

2012-06-15 Thread Mohit Srivastava
Ok I will do that. And json_in json_out used as argument due to ownership. On Jun 15, 2012 5:57 PM, Henrik Ingo henrik.i...@avoinelama.fi wrote: ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net

Re: [Drizzle-discuss] JSON Server API Update

2012-06-16 Thread Mohit Srivastava
Hi Henrik, Yeah I already made the all changes except one (session in constructor). Whether use new function like authenticateUser() or in execute() one ? . I prefer new function. I will commit the new changes soon. Right now I am exploring some cities of India :). And yeah re-factoring wins ,

Re: [Drizzle-discuss] JSON Server API Update

2012-06-16 Thread Mohit Srivastava
Hi Henrik, Yeah I made all changes except one ( session in constructor). Whether put that in another function or execute one ? For me it should be in another function like autheticateUser(). I will commit the changes soon. Right now I am travelling and exploring the cities of India :-) And yeah

Re: [Drizzle-discuss] JSON Server API Update

2012-06-24 Thread Mohit Srivastava
excercise. henrik On Thu, Jun 21, 2012 at 2:07 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Default Schema and table set: http://bazaar.launchpad.net/~srivastavamohit91/drizzle/drizzle-alsosql/revision/2568 On Tue, Jun 19, 2012 at 9:04 PM, Mohit Srivastava

[Drizzle-discuss] Json Server Multi-Threading Testing

2012-07-10 Thread Mohit Srivastava
Hi, Recently I have added multithreading feature in json server. Please elaborate the way to test multithreading feature. Thanks -- Mohit ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net

Re: [Drizzle-discuss] Json Server Multi-Threading Testing

2012-07-10 Thread Mohit Srivastava
Hi, Latest code with Multithreading feature: lp:~srivastavamohit91/drizzle/drizzle-alsosql-keyvalue -- Mohit On Tue, Jul 10, 2012 at 10:55 PM, pcrews glee...@gmail.com wrote: On 07/10/2012 05:28 AM, Mohit Srivastava wrote: Hi, Recently I have added multithreading feature in json server

Re: [Drizzle-discuss] (no subject)

2012-07-11 Thread Mohit Srivastava
Hi, please paste your basic.test at http://pastebin.com/ -- Mohit On Wed, Jul 11, 2012 at 3:51 PM, Sriganesh Navaneethakrishnan sriganesh1...@gmail.com wrote: Hi, With Stewart's help i was able to introduce http_delete into the http_functions. To make it not dependent on CURL, we introduce

Re: [Drizzle-discuss] (no subject)

2012-07-12 Thread Mohit Srivastava
sriganesh1...@gmail.com wrote: yes, it is the same as http_get() with one additional function call to libcurl curl_opt_set(curl, CURL_CUSTOMREQUEST, http_delete); thats it... i'm not able to push my branch to launchpad... On Wed, Jul 11, 2012 at 5:54 PM, Mohit Srivastava

Re: [Drizzle-discuss] (no subject)

2012-07-12 Thread Mohit Srivastava
push its just waiting...no action is being done...:-( On Jul 12, 2012 10:24 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Hi Sriganesh, For creating a branch , you just need a launchpad credentials. Create your account on launchpad and create your own branch related to your task

[Drizzle-discuss] Making Json_server plugin dynamic for Integer variable esp.

2012-07-13 Thread Mohit Srivastava
Hi Daniel, I am currently working on Json_server plugin. I already added few configuration variable which are dynamic. Recently I have added a variable max_threads (of integer type) and want to make it dynamic. So I tried the same way. The problem I faced : context.registerVariable(new

Re: [Drizzle-discuss] Review of json_server multi-threading

2012-07-14 Thread Mohit Srivastava
Hi Henrik, I am done with multi-threading and dynamic plugin part.New one for review :) http://bazaar.launchpad.net/~srivastavamohit91/drizzle/drizzle-alsosql-keyvalue/revision/2574 -- Mohit On Fri, Jul 13, 2012 at 2:48 PM, Henrik Ingo henrik.i...@avoinelama.fiwrote: On Fri, Jul 13, 2012 at

Re: [Drizzle-discuss] Review of json_server multi-threading

2012-07-14 Thread Mohit Srivastava
Hi , In previous commit I was forgot to test: http://bazaar.launchpad.net/~srivastavamohit91/drizzle/drizzle-alsosql-keyvalue/revision/2575 -- Mohit On Sat, Jul 14, 2012 at 3:20 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Hi Henrik, I am done with multi-threading and dynamic

Re: [Drizzle-discuss] Review of json_server multi-threading

2012-07-17 Thread Mohit Srivastava
Hi, Check this: http://bazaar.launchpad.net/~srivastavamohit91/drizzle/drizzle-json_server-multithreading/revision/2572 On Mon, Jul 16, 2012 at 3:39 PM, Henrik Ingo henrik.i...@avoinelama.fi wrote: On Sat, Jul 14, 2012 at 5:13 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: http

[Drizzle-discuss] Unable to locate documentation

2012-11-27 Thread Mohit Srivastava
Hi, I tried wiki and docs.drizzle.org but both of them are down. So where can I found latest documentation now ? -- Mohyt ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net Unsubscribe :

[Drizzle-discuss] Undefined reference to symbol 'boost::system::system_category()'

2012-12-02 Thread Mohit Srivastava
-- Mohit Srivastava ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https://help.launchpad.net/ListHelp

[Drizzle-discuss] Error in building code --with-debug option

2013-01-14 Thread Mohit Srivastava
as errors Any one having same problem? -- Thanks regards Mohit Srivastava ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https

Re: [Drizzle-discuss] Contribution In Drizzle

2013-01-24 Thread Mohit Srivastava
Hi Stewart, Thanks for suggesting me some work. I am looking in it . -- Prachee Rai On Fri, Jan 25, 2013 at 10:22 AM, Stewart Smith stew...@flamingspork.comwrote: Prachee Rai pracheer...@gmail.com writes: I just took an overview of dizzledump.cc . I want to know , with word Re-factoring

[Drizzle-discuss] Fwd: Json Server Unable to load.

2013-02-04 Thread Mohit Srivastava
Hi, I am trying to load this plugin , Can't open shared library '/home/mohyt/repos/drizzle/drizzle-json_server/plugin/.libs/libjson_server_plugin.so' (errno: 0 /home/mohyt/repos/drizzle/drizzle-json_server/plugin/.libs/libjson_server_plugin.so: undefined symbol: evbuffer_new) I installed event2

[Drizzle-discuss] GSOC 2013

2013-04-11 Thread Mohit Srivastava
Hi, Does Drizzle select as participating organisation for 2013 Google Summer Of Code? -- Mohit ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net Unsubscribe :

Re: [Drizzle-discuss] Introduction

2013-04-16 Thread Mohit Srivastava
Hi Abhinav, For a start ,try this, https://bugs.launchpad.net/drizzle/+bugs?field.tag=low-hanging-fruit ..mohyt On Mon, Apr 15, 2013 at 10:53 PM, Abhinav Singi abhinavsi...@gmail.comwrote: Hello, My name is Abhinav Singi. Currently I'm pursuing B.Tech. in CS dept. from IIIT-Hyderabad. I'm

[Drizzle-discuss] Google Summer Of Code 2013 Proposal- AlsoSQL(Json Server)

2013-04-22 Thread Mohit Srivastava
-interface-now-key-value-support http://mohyt.blogspot.in/2012/06/design-of-alsosql-drizzle-json-http.html Thanks Regards -- Mohit Srivastava ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net

[Drizzle-discuss] Json Server tests are disabled

2013-06-01 Thread Mohit Srivastava
Hi, Tests for the json server are disabled. How can I enable them again ? -- Mohit ___ Mailing list: https://launchpad.net/~drizzle-discuss Post to : drizzle-discuss@lists.launchpad.net Unsubscribe : https://launchpad.net/~drizzle-discuss More help

[Drizzle-discuss] [Query] Drop Table implementation

2013-07-16 Thread Mohit Srivastava
Hi Stewart, I looked into the droptable part. And as you suggested to implement rm_table_part2(Session *session, vectoridentifier::Table table_identifiers, bool if_exists, bool drop_temporary). But here is few cases , I need to know: if (not drop_temporary

[Drizzle-discuss] Bugs Report

2013-07-16 Thread Mohit Srivastava
Hi All, - 75 New bugshttps://bugs.launchpad.net/drizzle/+bugs?search=Searchfield.status=New - 222 Open bugs https://bugs.launchpad.net/drizzle/+bugs - 15 In-progress bugshttps://bugs.launchpad.net/drizzle/+bugs?search=Searchfield.status=In+Progress - 0 Critical

Re: [Drizzle-discuss] What is the access to blog.drizzle.org

2013-08-13 Thread Mohit Srivastava
Upto last summer, Blogs with labble Drizzle was posted on planet drizzle. But this summer , there is nothing like that. On Wed, Aug 14, 2013 at 9:45 AM, Vijay Samuel vjsamuel1...@gmail.comwrote: I have added the post. But there seems to be something wrong with our wordpress. Cheers, -Vijay

Re: [Drizzle-discuss] problem about ppa for Drizzle-developers

2013-08-18 Thread Mohit Srivastava
Hey Louis, Just try sudo apt-get install drizzle-dev -- Mohit On Mon, Aug 19, 2013 at 9:08 AM, Louis.hust ouc...@gmail.com wrote: Hi, all, I'd like to build the drizzle from source following http://docs.drizzle.org/installing/from_source.html#dependencies i follow the steps on ubuntu:

Re: [Drizzle-discuss] Willing to contribute

2013-10-17 Thread Mohit Srivastava
Hi Karan , You can start with low hanging bugs. -- Mohit On Oct 17, 2013 11:03 PM, Karan Makim karanma...@hotmail.com wrote: Hi, Myself Karan Makim from DA-IICT, Gandhinagar(Gujarat). I am a final year student in B.Tech.(I.C.T.), DA-IICT. Database, cloud are my interest field

Re: [Drizzle-discuss] Willing to contribute, need advice

2013-11-13 Thread Mohit Srivastava
, but in the slave plugin code instead. You should learn bazaar basics first. -- Mohit Srivastava On 13 November 2013 09:52, Manmohit Rekhi coolmm...@gmail.com wrote: Hello, I am a student in CSE in Nirma university(Ahmedabad) and am interested in the Drizzle project. It would be very kind, if some

Re: [Drizzle-discuss] Willing to contribute, need advice

2013-11-14 Thread Mohit Srivastava
Hey, /usr/bin/install: cannot create regular file `/usr/local/lib/libdrizzledmessage.so.0.0.0': *Permission denied* You should be sudo while installing sudo make install -- Mohyt On 15 November 2013 11:38, Manmohit Rekhi coolmm...@gmail.com wrote: Hi, I downloaded a tar.gz file of drizzle

Re: [Drizzle-discuss] Willing to contribute, need advice

2013-11-14 Thread Mohit Srivastava
. python config/pandora-plugin write make[1]: Nothing to be done for `html-am'. make[1]: Leaving directory `/home/dell/Desktop/drizzle-7.2.4-alpha' tried all those with sudo too. sorry for asking so many questions. On Fri, Nov 15, 2013 at 11:56 AM, Mohit Srivastava srivastavamohi...@gmail.com

Re: [Drizzle-discuss] Willing to contribute, need advice

2013-11-15 Thread Mohit Srivastava
be run as root, use --user to start drizzled up as another user. Abort was called from drizzled/drizzled.cc:606 in check_user() please can you help me? thanking you, Manmohit Rekhi On Fri, Nov 15, 2013 at 12:27 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Drizzle is a client

Re: [Drizzle-discuss] Guidance for Contributing to Drizzle

2014-02-11 Thread Mohit Srivastava
Hi Nishank, You can start with https://bugs.launchpad.net/drizzle/+bugs?field.tag=low-hanging-fruit. Join us on IRC #drizzle. Most of us generally busy with the their daily job. So have patience there. -- Mohyt On 11 February 2014 15:22, Nishank Bisht nishank.bisht...@gmail.com wrote:

Re: [Drizzle-discuss] Guidance for Contributing to Drizzle

2014-02-11 Thread Mohit Srivastava
familarize myself with the code. Thanks On Tue, Feb 11, 2014 at 11:49 AM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Hi Nishank, You can start with https://bugs.launchpad.net/drizzle/+bugs?field.tag=low-hanging-fruit. Join us on IRC #drizzle. Most of us generally busy

Re: [Drizzle-discuss] Contribute to drizzle through GSoC 2014

2014-02-11 Thread Mohit Srivastava
Hi Sumol, You can start from issues: https://bugs.launchpad.net/drizzle/+bugs?field.tag=low-hanging-fruit -- Mohyt On 12 February 2014 03:27, Sumol Lodha sumollo...@gmail.com wrote: Hi, My name is Sumol Lodha. I'm a 3rd year Computer Science student. I'm interested to contribute for

Re: [Drizzle-discuss] Guidance for Contributing to Drizzle

2014-02-12 Thread Mohit Srivastava
On Tue, Feb 11, 2014 at 10:15 PM, Mohit Srivastava srivastavamohi...@gmail.com wrote: Hi Nishant, Clone a branch from master. https://code.launchpad.net/drizzle You should first look into various bazaar(bzr) commands. -- Mohyt On 12 February 2014 02:14, Nishank Bisht nishank.bisht

Re: [Drizzle-discuss] Interested in working with Drizzle Database

2014-02-13 Thread Mohit Srivastava
CGAL ? On 13 February 2014 13:11, Arpit Sharma arpit17...@gmail.com wrote: Hello, My name is Arpit Sharma. I'm a 3rd year Computer Science student. I'm very much interested to work for CGAL project in Gsoc 2014. Any pointers on how to proceed. -Thank you Arpit Sharma

Re: [Drizzle-discuss] Project for GSOC 14

2014-02-23 Thread Mohit Srivastava
Hi Suyash, You can start with https://bugs.launchpad.net/drizzle/+bugs?field.tag=low-hanging-fruit For setup : http://www.learningdrizzle.com/ http://mohyt.blogspot.in/2013/07/setting-up-drizzle-development-ubuntu.html -- Mohyt On 24 February 2014 07:27, Suyash Loiwal suyashloi...@gmail.com

[Drizzle-discuss] Mohit Srivastava: Debug Drizzle Code with GDB

2012-05-30 Thread Planet Drizzle: Mohit Srivastava
Mohit Srivastava: Debug Drizzle Code with GDB From last few days , I have been working on a bug in JSON Server of Drizzle. And the bug is of Segmentation fault , which is not easy to recognize by just reading the code-base. So , the best way to get rid of this problem is to debug the code

[Drizzle-discuss] Mohit Srivastava: Design of AlsoSQL: Drizzle JSON HTTP Server

2012-06-14 Thread Planet Drizzle: Mohit Srivastava
Mohit Srivastava: Design of AlsoSQL: Drizzle JSON HTTP Server This particular project was proposed by Henrik at Drizzle Day 2011. A week later, Stewart published version 0.1of AlsoSQL. Later I and Henrik worked on version 0.2 and he talked about it at Drizzle Day 2012.AlsoSQL:Drizzle JSON HTTP