I am trying to load some csv files located in windows, into Marklogic DB using mlcp command as follows:
./mlcp.sh import -mode local -options_file ../conf/conn.txt -input_file_path "/windows_path/" -input_file_type delimited_text -generate_uri -output_uri-replace "/windows_path/,'/file_path/'"
Got the following exception:
INFO contentpump.LocalJobRunner: Content type: XML
ERROR contentpump.ContentPump:Error running a ContentPump job
java.io.IOException: No input files found with the specified input path file:/windows_path/ and input file pattern .*
Caused by: org.apache.hadoop.mapreduce.lib.input.InvalidInputException: Input path does not exist: file: /windows_path/
But files are available in the windows path. when I try to execute the following command from Linux server
cd /windows-path/
I get the following exception:
-bash: cd: /windows_path/: Key has expired
I am new to Linux, could anyone explain. Why such exception? Do I need to mount the windows path in Linux server? If so, how can I acheive it?
Thanks in Advance.