| bio | website | pronto.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 7 months |
| seen | May 15 at 16:26 | |
| stats | profile views | 87 |
Senior Software Developer providing admin support to Sales, Finance, and Pronto's merchants and syndication partners.
|
May 14 |
comment |
Is there an apache pig equivalent of “SHOW TABLES”? i JUST grokked that it's not a data store, it's a file system. i keep calling it a data store, my husband finally told me to stop doing that as it's confusing. it's a file system. i can do filesystem commands! DERP! thanks @seedhead |
|
May 14 |
accepted | Is there an apache pig equivalent of “SHOW TABLES”? |
|
May 14 |
comment |
Is there an apache pig equivalent of “SHOW TABLES”? You simply restated my question ( you could list the files and directories through Pig shell) and left out the answer. Okay, how? |
|
May 13 |
asked | Apache Pig - ERROR 6007: Unable to check name |
|
May 13 |
asked | Is there an apache pig equivalent of “SHOW TABLES”? |
|
May 13 |
accepted | pig to hadoop issue: Server IPC version 7 cannot communicate with client version 4 |
|
May 13 |
comment |
pig to hadoop issue: Server IPC version 7 cannot communicate with client version 4HADOOP_HOME is deprecated in favor of HADOOP_PREFIX. however, your key point - that i was using v4 locally and the cluster is v7 - was the fix i was looking for. thanks. i would have expected our cluster to be a stable version of hadoop but our sysops are apparently cowboys. yippee ki yay, motherf***er |
|
May 10 |
asked | pig to hadoop issue: Server IPC version 7 cannot communicate with client version 4 |
|
May 10 |
comment |
PIG automatically connected with default HDFS, how? so the salient point is, pig doesn't have its own config for the URL, it uses the one defined in hadoop/conf/core-site.xml. |
|
May 10 |
comment |
$HADOOP_HOME is deprecated You should select an answer. May I suggest @devesh chanchlani's, below? It worked for me. |
|
May 8 |
comment |
Still getting “Unable to load realm info from SCDynamicStore” after bug fix at least from within intelliJ, it does not work with java 6. |
|
May 7 |
awarded | Excavator |
|
May 7 |
revised |
Cannot convert '0000-00-00 00:00:00' to TIMESTAMP fixed error in code, NO_DATE was missing a type |
|
May 7 |
suggested | suggested edit on Cannot convert '0000-00-00 00:00:00' to TIMESTAMP |
|
May 7 |
awarded | Popular Question |
|
May 1 |
comment |
how does Spring know from the jsp what controller to use? sorry, but as i mentioned in my answer, above, even when i called "/alerts" it was still failing. the controller was not being invoked because Spring didn't know to look for annotations for controllers. |
|
May 1 |
revised |
how does Spring know from the jsp what controller to use? added a sentence for clarity |
|
May 1 |
comment |
how does Spring know from the jsp what controller to use? i was getting the empty page because the controller was not being invoked. see my answer, above. but as you, and NilsH before you, noted, i was calling it wrong / thinking about it backward. |
|
May 1 |
answered | Directly accessible data structure Java |
|
Apr 30 |
comment |
MySQLSyntaxErrorException: Table XYZ doesn't exist i discovered that i have another piece that needs to point to a different database on the same server, so i removed the database "worker_events" from my data source spec in applicationContext.xml, and added back catalog='worker_events' to my entity. that worked. originally, i had been trying to point catalog at the overall data source name, rather than at the database name. my test shows that catalogs do work with MySQL. |