Solr 触发器优化并检查 Java 代码的进度



从本主题中,有两种方法可以从 Java 代码触发 solr 优化。要么
发送http请求,要么使用solrj api。
但是如何检查它的进度呢?
比如说,一个以百分比
形式返回优化进度的 API或字符串,如正在运行/已完成/失败。
有这样的 API 吗?

是的,solrj api 中的 optimize() 是一种同步方法。
这是我用来监视优化进度的内容。

CloudSolrClient client = null;
    try {
        client = new CloudSolrClient(zkClientUrl);
        client.setDefaultCollection(collectionName);
        m_logger.info("Explicit optimize of collection " + collectionName);
        long optimizeStart = System.currentTimeMillis();
        UpdateResponse optimizeResponse = client.optimize();
        for (Object object : optimizeResponse.getResponse()) {
            m_logger.info("Solr optimizeResponse" + object.toString());
        }
        if (optimizeResponse != null) {
            m_logger.info(String.format(
                    " Elapsed Time(in ms) - %d, QTime (in ms) - %d",
                    optimizeResponse.getElapsedTime(),
                    optimizeResponse.getQTime()));
        }
        m_logger.info(String.format(
                "Time spent on Optimizing a collection %s :"
                        + (System.currentTimeMillis() - optimizeStart)
                        / 1000 + " seconds", collectionName));
    } catch (Exception e) {
        m_logger.error("Failed during explicit optimize on collection "
                + collectionName, e);
    } finally {
        if (client != null) {
            try {
                client.close();
            } catch (IOException e) {
                throw new RuntimeException(
                        "Failed to close CloudSolrClient connection.", e);
            }
            client = null;
        }
    }

最新更新