[
https://issues.apache.org/jira/browse/HBASE-18269?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16390708#comment-16390708
]
Mike Drob commented on HBASE-18269:
-----------------------------------
{quote}
+Set the `$JYTHON_HOME` environment variable to pointing to
+the path to `jython.jar` and each additional Jython-related JAR needed for
{quote}
nit: this should probably say a directory containing jython.jar
{code}
-desc.addFamily(HColumnDescriptor("content:"))
...
+cDesc = HColumnDescriptor("content")
+desc.addFamily(cDesc)
{code}
Does this not work as a single line anymore?
{code}
+data = java.lang.String(result.getValue("content", "qual"))
{code}
specify utf8?
haven't tried running any of the new examples, this was visual review only.
hopefully have time this week.
> Jython docs out of date
> -----------------------
>
> Key: HBASE-18269
> URL: https://issues.apache.org/jira/browse/HBASE-18269
> Project: HBase
> Issue Type: Bug
> Components: documentation
> Affects Versions: 2.0.0, 1.3.1, 1.2.6, 1.5.0, 1.4.2
> Reporter: Mike Drob
> Assignee: Artem Ervits
> Priority: Major
> Labels: beginner
> Attachments: HBASE-18269.v01.patch
>
>
> The documentation describing how to launch Jython + HBase is out of date. -
> https://hbase.apache.org/book.html#jython
> First, we would set the classpath differently:
> {noformat}
> HBASE_CLASSPATH=/home/hbase/jython.jar bin/hbase org.python.util.jython
> {noformat}
> Then, the actual code example is out of date too:
> {noformat}
> >>> desc = HTableDescriptor(tablename)
> >>> desc.addFamily(HColumnDescriptor("content:"))
> Traceback (most recent call last):
> File "<stdin>", line 1, in <module>
> at
> org.apache.hadoop.hbase.HColumnDescriptor.isLegalFamilyName(HColumnDescriptor.java:566)
> at
> org.apache.hadoop.hbase.HColumnDescriptor.<init>(HColumnDescriptor.java:470)
> at
> org.apache.hadoop.hbase.HColumnDescriptor.<init>(HColumnDescriptor.java:425)
> at
> org.apache.hadoop.hbase.HColumnDescriptor.<init>(HColumnDescriptor.java:390)
> at
> org.apache.hadoop.hbase.HColumnDescriptor.<init>(HColumnDescriptor.java:338)
> at
> org.apache.hadoop.hbase.HColumnDescriptor.<init>(HColumnDescriptor.java:327)
> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> at
> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
> at
> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
> at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
> at
> org.python.core.PyReflectedConstructor.constructProxy(PyReflectedConstructor.java:211)
> {noformat}
> We should make sure that the examples we claim are runnable actually are.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)