On Mon, Jul 1, 2013 at 8:11 AM, Sean Mackrory <[email protected]> wrote:
> On Mon, Jul 1, 2013 at 4:00 AM, Jay Vyas <[email protected]> wrote:
>> Hi : Im finding that the pom.xml for the sqoop smoke tests requires a
>> "SQOOP_URL":
>>
>> <plugin>
>> <groupId>org.apache.maven.plugins</groupId>
>> <id>enforce-property</id>
>> <property>SQOOP_URL</property>
>> ...</requireProperty>
>> </rules>
>> <fail>true</fail>
>> </plugin>
>>
>> What is the role this URL plays? Im not finding it used in the code
>> anywhere.
Not sure what version of Bigtop you're looking at, but if you
look at 0.6.0/trunk then you'll see this
<configuration>
<systemPropertyVariables>
<sqoop.server.url>${SQOOP_URL}</sqoop.server.url>
.....
(in bigtop-tests/test-execution/smokes/sqoop/pom.xml)
SQOOP_URL is basically used to set sqoop.server.url sysprop
for the Sqoop2 tests to be able to find the sqoop server.
Thanks,
Roman.