Hi,
I would like to clone a repository from MonetDB-11.9.7. What would be the branch or rev number for:
hg clone http://dev.monetdb.org/hg/MonetDB -b
Thanks in advance.
Chi
________________________________
From: Chi-Young Ku <chi(a)querymetrica.com>
To: "developers-list(a)monetdb.org" <developers-list(a)monetdb.org>
Cc: Chi- Young Ku <chi(a)querymetrica.com>
Sent: Wednesday, October 17, 2012 5:47 PM
Subject: Generating gprof report
Hi,
I used the "--enable_profile" option to configure my MonetDB and ran "make clean; make; make install".
I, then, started my MonetDB instance and ran the following query:
select count(*) from lineitem where l_partkey > 9000;
Lastly, I quit from the "mclient" session and issued "monetdbd stop ...".
I observed that there are several gmon.out files in different directories in my top build directory.
Therefore, I issued the following gprof command:
gprof /usr/local/bin/mserver5 ./sql/backends/monet5/gmon.out ./gdk/gmon.out ./monetdb5/extras/mal_optimizer_template/gmon.out ./monetdb5/modules/atoms/gmon.out
./monetdb5/modules/kernel/gmon.out ./monetdb5/modules/mal/gmon.out ./monetdb5/scheduler/gmon.out ./monetdb5/optimizer/gmon.out ./monetdb5/mal/gmon.out
However, the output of the above command did not show any calling sequence containing the execution of MAL instructions.
Did I miss anything?
Thanks in advance.
Chi
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list
Fedora, joe, gcc
S.
----- Reply message -----
From: "Fabian Groffen" <Fabian.Groffen(a)cwi.nl>
To: "Communication channel for developers of the MonetDB suite." <developers-list(a)monetdb.org>
Subject: MonetDB Development Environment
Date: Wed, Oct 24, 2012 10:08
On 23-10-2012 14:19:42 -0700, Masood Mortazavi wrote:
> I'm wondering�what development environments (OS, editors, etc.)�or IDEs, if
> any, MonetDB development team are using.
Vim and Emacs.
Fabian
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list
Hi --
I'm wondering what development environments (OS, editors, etc.) or IDEs, if
any, MonetDB development team are using.
Regards,
Masood
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list
The MonetDB team at CWI/MonetDB BV is pleased to announce the
Oct2012 feature release of the MonetDB suite of programs.
More information about MonetDB can be found on our website at
<http://www.monetdb.org/>.
For details on this release, please see the release notes at
<http://www.monetdb.org/Downloads/ReleaseNotes>.
As usual, the download location is <http://dev.monetdb.org/downloads/>.
Due to a packaging problem on Debian and Ubuntu, no binary packages for
these systems exist. We apologise for the inconvenience. We expect
this problem to be resolved by the Oct2012-SP1 release.
Oct 2012 feature release
Build Environment * Removed --enable-noexpand configure option.
Java Module * Fixed problem with PreparedStatements and setXXX()
methods using column numbers instead of names, bug
#3158
Client Package * mclient now accepts URIs as database to connect to.
* all strings returned by python2 are unicode, removed
use_unicode option
* python2 and 3 type convertion speed improvements
* python2 uses new style objects now (bug #3104)
* split python2 and python3
MonetDB5 Server * Removed module attach since it wasn't used or even
tested.
* The MAL-to-C Compiler (mcc) was removed. The code
wasn't tested and most likely non-functional.
Merovingian * Fixed problem where monetdbd would refuse to startup
when discovery was set to false, bug #3155
MonetDB Common * Removed the gdk_embedded (and embedded) option. The
code wasn't tested and most likely non-functional.
* BAT-of-BATs is no longer allowed. It was already not
allowed to make these types of BATs persistent, but
now they can't be created at all anymore.
Bug Fixes * 3084: Timestamp arithmetic very slow (especially on
Windows)
* 3125: Python tests fail after recent Python API
changes
* 3155: Provide an option for setting discovery to
false
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list
Hello MonetDB Community.
My name is James Becker, my friends call me Jaimi, and I am new to posting messages here, so I hope you will bear with me.
I am conducting a POC on MonetDB to see if we can use it to replace Vertica for a large scale read mostly educational reporting application. So far things are showing promise, but the legacy reports lean heavily on OVER(), which doesn't appear to be part of the 11.11.11 release. Am I missing something, or is this the case?
If anyone who has run into a similar limitations has any insights as to where I have made a wrong turn, or how to either implement OVER() in MonetDB using either MAL/C, or any suggestions for query work-arounds that would yield similar results, this would be greatly appreciated.
Thx.
~jj
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list
Hey,
I'm running a small performance test on MonetDB and Postgres. According to my results "extract" function in monetDB (http://www.monetdb.org/Documentation/SQLreference/Temporal) is nearly 10x slower then Postgres.
Do you know the reason, or do you have any idea which can make "extract" function faster in MonetDB ?
Thanks,
Metin
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list
Greetings all,
I have a simple question about MonetDB.
I'm evaluating different several column-store db and I have some questions about Monet :
*
Is MonetDB a column-store database ? If yes I can't understand how I can query it with standard SQL (it'so simple bue it seem to be the ONLY column-store db that support SQL) *
Can MonetDB scale-out over several machines (to build a cluster) for the same database ? *
There is no .NET provider that I can use to connect to MonetDB for fast accessing from C# instead of using ODBC ?In general I'm looking for a database that can perform realtime queries against milions of records, because we are going to build a web application that need real fast access to the data.
What are best practices in desing tables in MonetDB ?
Thanks a lot to everyone!
S
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list
Hi,
I used the "--enable_profile" option to configure my MonetDB and ran "make clean; make; make install".
I, then, started my MonetDB instance and ran the following query:
select count(*) from lineitem where l_partkey > 9000;
Lastly, I quit from the "mclient" session and issued "monetdbd stop ...".
I observed that there are several gmon.out files in different directories in my top build directory.
Therefore, I issued the following gprof command:
gprof /usr/local/bin/mserver5 ./sql/backends/monet5/gmon.out ./gdk/gmon.out
./monetdb5/extras/mal_optimizer_template/gmon.out
./monetdb5/modules/atoms/gmon.out
./monetdb5/modules/kernel/gmon.out ./monetdb5/modules/mal/gmon.out ./monetdb5/scheduler/gmon.out
./monetdb5/optimizer/gmon.out ./monetdb5/mal/gmon.out
However, the output of the above command did not show any calling sequence containing the execution of MAL instructions.
Did I miss anything?
Thanks in advance.
Chi
_______________________________________________
developers-list mailing list
developers-list(a)monetdb.org
http://mail.monetdb.org/mailman/listinfo/developers-list