I have a rudimentary question. How do I access the property thats defined
in
wikipedia-parser.properties
If I define a property in wikipedia-parser.properties called
system.xyz=Hello
I tried to
import org.apache.samza.config.Config;
config.get("system.xyz")
I get a null pointer exception
I am passing the property file as an argument
deploy/samza/bin/run-job.sh
--config-factory=org.apache.samza.config.factories.PropertiesConfigFactory
--config-path=file://$PWD/conf/wikipedia-parser.properties.local
- Shekar