Re: pherf question

2015-06-10 Thread Cody Marcel
There are no limits to the syntax. Pherf just send whatever is in the files it reads directly to phx client. Can you post exact file you are using? Also, a couple of pointers. -Use a different file than the ones provided. Just put it in the config directory created in the installation. Pherf will

Re: Query DDL from Phoenix

2015-07-14 Thread Cody Marcel
This should do it. DatabaseMetaData dbmd = connection.getMetaData(); ResultSet resultSet = dbmd.getColumns(null, schemaName, tableName, null); On Mon, Jul 13, 2015 at 8:51 PM, Eli Levine wrote: > The standard JDBC way is to use Connection.getMetadata(). See if that does > what you need. You ca

Re: How to add lots of dummy data to a table efficiently

2015-09-09 Thread Cody Marcel
Have you looked at the pherf module in Phoenix? You can predefined rules and have it generate data based on that. Sent from my iPhone > On Sep 9, 2015, at 3:55 AM, James Heather wrote: > > I've been trying to create a table and then bung lots of random data into it, > but without generating the

Re: [ANNOUNCE] New Apache Phoenix committer - Jan Fernando

2015-09-29 Thread Cody Marcel
Sweet! Congrats Jan. On Tue, Sep 29, 2015 at 11:23 AM, Eli Levine wrote: > On behalf of the Apache Phoenix project I am happy to welcome Jan Fernando > as a committer. Jan has been an active user and contributor to Phoenix in > the last couple of years. Some of his major contributions are: > 1)

Re: Fixed bug in PMetaDataImpl

2015-10-02 Thread Cody Marcel
I think that's a duplicate bug. Can we consolidate them? https://issues.apache.org/jira/browse/PHOENIX-2172 On Fri, Oct 2, 2015 at 9:02 AM, James Taylor wrote: > Patch looks great - thanks so much, James. Would you mind prefixing the > commit message with "PHOENIX-2256" as that's what ties the

Re: Pherf test

2016-02-12 Thread Cody Marcel
Yes, The -l flag on pherf loads the data. You can just leave that off and use -q for queries. You will need to make sure the queries hit the tables that you have generated elsewhere. On Thu, Feb 11, 2016 at 4:09 PM, Alicia Shu wrote: > Hello, > > I have a question about Pherf test. > > Can one u