[ 
https://issues.apache.org/jira/browse/SOLR-13934?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16975282#comment-16975282
 ] 

Gus Heck commented on SOLR-13934:
---------------------------------

Always good to get doc improvements. Looks like there are a bunch of 
undocumented system properties in play for this tool...
{code:java}
     final String mode = System.getProperty("data", DEFAULT_DATA_MODE);
      if (! DATA_MODES.contains(mode)) {
        fatal("System Property 'data' is not valid for this tool: " + mode);
      }

      String params = System.getProperty("params", "");

      String host = System.getProperty("host", DEFAULT_POST_HOST);
      String port = System.getProperty("port", DEFAULT_POST_PORT);
      String core = System.getProperty("c");

      urlStr = System.getProperty("url");
....
      boolean auto = isOn(System.getProperty("auto", DEFAULT_AUTO));
....
      String r = System.getProperty("recursive", DEFAULT_RECURSIVE);
....
        delay = Integer.parseInt(System.getProperty("delay", ""+delay));
....
      OutputStream out = isOn(System.getProperty("out", DEFAULT_OUT)) ? 
CLIO.getOutStream() : null;
      String fileTypes = System.getProperty("filetypes", DEFAULT_FILE_TYPES);
      boolean commit = isOn(System.getProperty("commit",DEFAULT_COMMIT));
      boolean optimize = isOn(System.getProperty("optimize",DEFAULT_OPTIMIZE));

{code}

> Documentation on SimplePostTool for Windows users is pretty brief
> -----------------------------------------------------------------
>
>                 Key: SOLR-13934
>                 URL: https://issues.apache.org/jira/browse/SOLR-13934
>             Project: Solr
>          Issue Type: Improvement
>      Security Level: Public(Default Security Level. Issues are Public) 
>          Components: SimplePostTool
>    Affects Versions: 8.3
>            Reporter: David Eric Pugh
>            Priority: Minor
>             Fix For: master (9.0)
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> SimplePostTool on windows doesn't have enough documentation, you end up 
> googling to get it to work.  Need to provide better example.
> https://lucene.apache.org/solr/guide/8_3/post-tool.html#simpleposttool



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to