Cyc Administrator Handbook/System Description
From Public Domain Knowledge Bank
Contents
Prev: Introduction Home:Cyc Administrator Handbook Next: Installation
This page is based on the original document Enterprise Cyc Administrator Handbook at https://www.cyc.com/documentation/enterprise-cyc-administrator-handbook/ There is no intent to infringe on Cycorp's Copyright. It is Copyright (c) Cycorp 2019 Cycorp's address is 7718 Wood Hollow Drive Suite 250 Austin, TX 78731 USA mailto:info@cyc.com Main Phone: 512.342.4000
System Description
Introduction
This section gives a description of the Cyc system that sets the conceptual stage for the administrative tasks presented in the following sections.
Cyc as a Software System
Cyc is a common-sense knowledge base and machine-reasoning system. A knowledge base system is in many ways very similar to a relational database server. Among the similarities are:
- 1.There is a centralized server component.
- 2.The two main modes of interaction consist of updating information and answering queries (or performing inference, in the diction of knowledge based systems).
- 3.The server offers a variety of APIs, ranging from web-based tools to programmatic APIs, connected via TCP/IP.
- 4.There is a dedicated scripting language.
- 5.The representation and query language can be expressive enough that some updates or queries will, by definition and mathematically provably, exhaust all available resources unless properly constrained.
However, there are also key differences, which Cyc shares with many knowledge base systems, that make the system unlike relational databases:
- 1.Cyc is not transactional. There are no commit points and no roll-backs.
- 2.Cyc keeps all change in memory (though it maintains a journal for replay purposes). If not explicitly instructed to serialize its knowledge base, changes made to Cyc may not be available automatically across restarts. In addition, the serialization of the knowledge is considered an infrequent operation and not very fast, compared to the rate of writes that relational databases achieve.
- 3.Many of the performance related parameters that are set globally in a relational database are set on a “per query” basis in Cyc. That is, each query that is sent to the Cyc system includes a list of parameters and values that gate things like how long the query can run before it times out, which portion of the knowledge base it can access in its search, the maximum number of answers it can return, and a whole suite of other such parameters that can play a large role in the performance of the system. Because these parameters depend on the query being asked and can and often vary from query to query, they are not expected to be set by system administrators or IT managers and, accordingly, are not covered in this document.
Architecture Overview
The following diagram provides a high-level overview of the Cyc software system, including some of the key server-external components that administrators might be called upon to manage. (See also the section on support components below.)
In summary
- 1.Cyc runs on top of Java virtual machine (Java version 6), which mediates all access to the operating system and its resources.
- 2.At its core, Cyc combines a knowledge store and a reasoning engine.
- 3.Server activity is logged to the log files.
- 4.The majority of the knowledge is housed in read-only knowledge base files; modifications are kept in main memory and journaled transcripts.
- 5.There is a set of core tools for manipulating the knowledge store and interacting with the reasoning engine.
- 6.In addition to the core tools, Cyc supports server-side scripting.
- 7.All of that functionality is exposed to the outside world via a set of network APIs in the form of TCP/IP-based socket services.